From: Kenichi Handa Date: Fri, 13 Dec 2002 04:42:25 +0000 (+0000) Subject: (encode-mac-roman): Fix last change. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~29224 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8c843d1f86441089ec024c1ebaf7c5a06c202a48;p=emacs.git (encode-mac-roman): Fix last change. --- diff --git a/lisp/language/european.el b/lisp/language/european.el index 4d4b71a8201..b594fb37413 100644 --- a/lisp/language/european.el +++ b/lisp/language/european.el @@ -578,9 +578,10 @@ but it selects the Dutch tutorial and input method.")) (read-multibyte-character r0 r1) (translate-character ucs-mule-to-mule-unicode r0 r1) (translate-character mac-roman-encoder r0 r1) - (if (r0 != ,(charset-id 'eight-bit-graphic)) - (if (r0 != ,(charset-id 'eight-bit-control)) - (r1 = ??))) + (if (r0 != ,(charset-id 'ascii)) + (if (r0 != ,(charset-id 'eight-bit-graphic)) + (if (r0 != ,(charset-id 'eight-bit-control)) + (r1 = ??)))) (write-repeat r1)))) "CCL program to encode Mac Roman")